home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / graphics / earth.zip / EARTH.POV < prev    next >
Text File  |  1994-03-28  |  588b  |  26 lines

  1.  
  2.  
  3. // simple example of wrapping a TGA file onto a sphere.
  4. // PoV source by cjcason@yarrow.wt.uwa.edu.au (100032,1644 on CIS).
  5.  
  6. // see earthmap.doc for credits for original idea and bitmaps
  7.  
  8. camera
  9. {
  10.   location  <0,   5,   -15>
  11.   direction <0,   0,   1.5>
  12.   up        <0,   1,   0>
  13.   right     <1.33,0,   0>
  14.   look_at   <0.0, 0.0, 0.0>
  15. }
  16.  
  17. // Light source
  18. object { light_source { <0,0,-5> color red 1 green 1 blue 1 } }
  19.  
  20. object
  21. {
  22.   sphere { <0,0,0> 4.5 }
  23.   pigment {image_map { tga "clearmap.tga" map_type 1 interpolate 2 }}
  24.   finish {ambient 1}
  25.   rotate <0,0,-5>
  26. }